home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_cvs.nasl < prev    next >
Text File  |  2005-03-31  |  4KB  |  106 lines

  1. #TRUSTED 03f5b2910320f95bf19b3290ac042ce0e4e4948167d39fb81f4e8ab05ef805a6cec07806573a216a862f56cd880f23c5b1ce6d494029841d7721764c861649064a63614ae9f8fc9f4c1db7c1daeba7f055d32095e31b09948a94d86eac37f6ca312d9d04a476c22a98a8c48ee085f67121337d27b4525306656944ef845be91dd390bea52cf0913102ef4feb25997d5bd4110339941512ba06a3cc7d698dae1f5d629426d76dc06299b5b712157b96b8fba1254b20bb72377d26d99c68e8e00c18acdd4b839c34d8cfabb38f0f0621abc94a6f2b7766a6692f06015da4442945ee140e906a3a9b48d16a6ca9d71e1e1cb23ae311875e94f2c1057514f26bde7db2bbc5c0b9694fa70a6ed54577eb1803244f96cb15e0cb699f237bfaecdcac0501357703d752dc648a56cdfecad341ec0c1ef8d68ecd280e446eeb015f6dfca792feb0998d10c5710880373a142515fd4191735759b1d10cf741cc84467c16b21ccedae19eaa5e2323279e514555a2e7e9ff6405824e35751ffbfede639fdd91b400995ca50f9b0b566fc8861c87102c3875a335ebf10077fcb8a4f3b263ef26981e8f50b3d7ba397ee99b9b217a9e99f3472bf97d8a705138ec51f7c1551b22351195d6cd701ad88997b77b1f68d60dc0259691fad49f77d0e672e0d2f57ac9cc8195e7ffced794b1ca3a7c4bd878494b3ca8a8e336d5aeddf2a21ee72a6668
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra")) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15871);
  15.  script_version ("1.2");
  16.  name["english"] = "Hydra: CVS";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find CVS accounts & passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force CVS authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/logins_file", "Secret/hydra/passwords_file");
  35.  script_require_ports("Services/cvspserver", 2401);
  36.  script_dependencies("hydra_options.nasl", "find_service.nes", "cvs_detect.nasl");
  37.  exit(0);
  38. }
  39.  
  40. #
  41.  
  42. throrough = get_kb_item("global_settings/thorough_tests");
  43. if ("yes" >!< throrough) exit(0);
  44. logins = get_kb_item("Secret/hydra/logins_file");
  45. passwd = get_kb_item("Secret/hydra/passwords_file");
  46. if (logins == NULL || passwd == NULL) exit(0);
  47.  
  48. port = get_kb_item("Services/cvspserver");
  49. if (! port) port = 2401;
  50. if (! get_port_state(port)) exit(0);
  51.  
  52. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  53. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  54.  
  55. empty = get_kb_item("/tmp/hydra/empty_password");
  56. login_pass = get_kb_item("/tmp/hydra/login_password");
  57. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  58. tr = get_kb_item("Transports/TCP/"+port);
  59.  
  60. i = 0;
  61. argv[i++] = "hydra";
  62. argv[i++] = "-s"; argv[i++] = port;
  63. argv[i++] = "-L"; argv[i++] = logins;
  64. argv[i++] = "-P"; argv[i++] = passwd;
  65. s = "";
  66. if (empty) s = "n";
  67. if (login_pass) s+= "s";
  68. if (s)
  69. {
  70.   argv[i++] = "-e"; argv[i++] = s;
  71. }
  72. if (exit_asap) argv[i++] = "-f";
  73. if (tr >= ENCAPS_SSLv2) argv[i++] = "-S";
  74.  
  75. if (timeout > 0)
  76. {
  77.   argv[i++] = "-w";
  78.   argv[i++] = timeout;
  79. }
  80. if (tasks > 0)
  81. {
  82.   argv[i++] = "-t";
  83.   argv[i++] = tasks;
  84. }
  85.  
  86. argv[i++] = get_host_ip();
  87. argv[i++] = "cvs";
  88.  
  89. report = "";
  90. results = pread(cmd: "hydra", argv: argv, nice: 5);
  91. foreach line (split(results))
  92. {
  93.   v = eregmatch(string: line, pattern: 'host:.*login: *(.*) password: *(.*)$');
  94.   if (! isnull(v))
  95.   {
  96.     l = chomp(v[1]);
  97.     p = chomp(v[2]);
  98.     report = strcat(report, 'login: ', l, '\tpassword: ', p, '\n');
  99.     set_kb_item(name: 'Hydra/cvs/'+port, value: l + '\t' + p);
  100.   }
  101. }
  102.  
  103. if (report)
  104.   security_hole(port: port, 
  105.     data: 'Hydra was able to break the following CVS accounts:\n' + report);
  106.